home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / NEWTEXTF / SOURCE_C / CLENGTH.C next >
C/C++ Source or Header  |  1990-06-24  |  152b  |  11 lines

  1. #include "MyLibrary.h"
  2.  
  3.         long    CLength (char *cstr)
  4.  
  5.             {long    length;
  6.  
  7.             length = 0L;
  8.             while (*cstr)
  9.                 {++length;
  10.                 ++cstr;}
  11.             return (length);}